From: Steven G. Johnson Date: Sun, 11 Dec 2016 21:17:11 +0000 (-0500) Subject: use ptrdiff_t rather than ssize_t, as ssize_t is non-standard (it is POSIX, not C) X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~24^2^2~138 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=78f336addd5c179f0d21a05f15014945084d9e68;p=utf8proc.git use ptrdiff_t rather than ssize_t, as ssize_t is non-standard (it is POSIX, not C) --- diff --git a/utf8proc.h b/utf8proc.h index 99b4fdb..8b5ec70 100644 --- a/utf8proc.h +++ b/utf8proc.h @@ -114,7 +114,7 @@ typedef uint16_t utf8proc_uint16_t; typedef int32_t utf8proc_int32_t; typedef uint32_t utf8proc_uint32_t; typedef size_t utf8proc_size_t; -typedef ssize_t utf8proc_ssize_t; +typedef ptrdiff_t utf8proc_ssize_t; typedef bool utf8proc_bool; #endif #include